Editable tables in shiny

Week4 pitch presentation for Coursera’s Developing Data Products

Daniel Bader

2019-10-08

Motivation

Create a shiny template for use with my actual work data that has the following features:

Data: mtcars

Quarter mile speed in seconds vs horse power

plot_ly(data = mtcars, x = ~hp, y = ~qsec, hovertext = rownames(mtcars)) %>%
    add_markers()

Editable table

Using rhandsontable package to allow editing of cells.

Not enough?

Visit my shiny app bringing it all together:
https://baderd.shinyapps.io/Dynamic_mtcars/

Still not enough?

Check out the source code to apply it to your data ;-)